home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / Form / Sources / Form.hpp < prev    next >
Encoding:
Text File  |  1996-04-25  |  1.3 KB  |  79 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Form.hpp
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FORM_HPP
  11. #define FORM_HPP
  12.  
  13. #if !defined(FW_BUILD_MAC)
  14.  
  15. // ----- Foundation Includes -----
  16.  
  17. #include "FWCommon.h"
  18. #include "FWDebug.h"
  19. #include "FWExcLib.h"
  20. #include "FWCollec.h"
  21. #include "FWRefCnt.h"
  22. #include "FWMemory.h"
  23. #include "FWNotifn.h"
  24. #include "FWRunTyp.h"
  25. #include "FWStream.h"
  26. #include "FWString.h"
  27.  
  28. // ----- OS Includes -----
  29.  
  30. #ifndef FWPOINT_H
  31. #include "FWPoint.h"
  32. #endif
  33.  
  34. #ifndef FWRECT_H
  35. #include "FWRect.h"
  36. #endif
  37.  
  38. #ifndef FWODGEOM_H
  39. #include "FWODGeom.h"
  40. #endif
  41.  
  42. // ----- OpenDoc Includes -----
  43.  
  44. #ifndef FWODTYPS_H
  45. #include "FWODTyps.h"
  46. #endif
  47.  
  48. #ifndef SOM_ODDragAndDrop_xh
  49. #include <DragDrp.xh>
  50. #endif
  51.  
  52. #ifndef SOM_Module_OpenDoc_StdProps_defined
  53. #include <StdProps.xh>
  54. #endif
  55.  
  56. #ifndef SOM_Module_OpenDoc_StdTypes_defined
  57. #include <StdTypes.xh>
  58. #endif
  59.  
  60. #ifndef SOM_ODStorageUnit_xh
  61. #include <StorageU.xh>
  62. #endif
  63.  
  64. #ifndef SOM_ODShape_xh
  65. #include <Shape.xh>
  66. #endif
  67.  
  68. #ifndef SOM_ODTransform_xh
  69. #include <Trnsform.xh>
  70. #endif
  71.  
  72. #ifndef SOM_ODSession_xh
  73. #include <ODSessn.xh>
  74. #endif
  75.  
  76. #endif
  77.  
  78. #endif // FORM_HPP
  79.